home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
3d_vb
/
form3.frm
< prev
next >
Wrap
Text File
|
1995-09-06
|
2KB
|
73 lines
VERSION 2.00
Begin Form Form3
BackColor = &H00C0C0C0&
BorderStyle = 0 'None
Caption = "Form3"
ClientHeight = 2565
ClientLeft = 1095
ClientTop = 1485
ClientWidth = 4110
Height = 2970
Icon = FORM3.FRX:0000
Left = 1035
LinkMode = 1 'Source
LinkTopic = "Form3"
ScaleHeight = 2565
ScaleWidth = 4110
Top = 1140
Width = 4230
Begin Timer Timer1
Enabled = 0 'False
Interval = 1000
Left = 240
Top = 3120
End
Begin PictureBox Picture1
BackColor = &H00C0C0C0&
BorderStyle = 0 'None
Height = 975
Left = 480
ScaleHeight = 975
ScaleWidth = 2895
TabIndex = 0
Top = 240
Width = 2895
End
End
Sub Form_Load ()
Screen.MousePointer = 11
Form3.Left = (Screen.Width - Form3.Width) / 2
Form3.Top = (Screen.Height - Form3.Height) / 2
Timer1.Enabled = True
End Sub
Sub Form_Paint ()
Picture1.Left = (Form3.ScaleWidth - Picture1.Width) / 2
Picture1.FontSize = 18
FormBorder Form3
ShadowPicFrame Picture1, 1
Text$ = "3-D4VB"
xPos% = (Picture1.ScaleWidth - Picture1.TextWidth(Text$)) / 2
yPos% = 240
RaisedPicText Picture1, Text$, xPos%, yPos%, BLUE
Form3.FontName = "Tms Rmn"
LabelBoxOnFrm Picture1, Form3, "A 3-D Subroutine Library", 2, 2, BLUE, ETCHED
Text$ = "for Microsoft Visual Basic"
xPos% = (Form3.ScaleWidth - TextWidth(Text$)) / 2
yPos% = Form3.ScaleHeight - ((Form3.TextHeight("I") * 5) + 60)
EtchedFrmText Form3, Text$, xPos%, yPos%, BLUE
Text$ = Chr$(169) + " Copyright, 1992 - LAN Services"
xPos% = (Form3.ScaleWidth - TextWidth(Text$)) / 2
yPos% = Form3.ScaleHeight - ((Form3.TextHeight("I") * 2) + 60)
EtchedFrmText Form3, Text$, xPos%, yPos%, BLUE
End Sub
Sub Timer1_Timer ()
Timer1.Enabled = False
Load Form1
End Sub